home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
setup_ut
/
finst22
/
zipldr.h_
/
zipldr
Wrap
Text File
|
1995-06-14
|
446b
|
29 lines
#define __ZIPLDR_H
#ifndef __STDIO_H
#include "stdio.h"
#endif
#ifndef __DLLLDR_H
#include "dllldr.h"
#endif
class lzpzipldr:public dllldr
{
public:
enum
{
ZIP_ANY = 0, ZIP_PKW = 1, ZIP_GNU = 2
};
int init()
{
return dllldr::init("lzpzip.dll");
}
int LzpZipCreate(char path[], int ziptype, int level);
int LzpZipWrite(char buf[], unsigned len);
long LzpZipClose();
};